projects
/
gtk4.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0d2c461
)
Add forgotten check
author
Matthias Clasen
<mclasen@redhat.com>
Mon, 18 Mar 2013 12:28:44 +0000
(08:28 -0400)
committer
Matthias Clasen
<mclasen@redhat.com>
Mon, 18 Mar 2013 12:50:21 +0000
(08:50 -0400)
We don't want to create titlebar widgets if the window
is not decorated anyway.
gtk/gtkwindow.c
patch
|
blob
|
history
diff --git
a/gtk/gtkwindow.c
b/gtk/gtkwindow.c
index 953a3fe589de103005aa3dff943340ec6e1e52c6..23b2fc6a1609bacb2d509c0fa9fdf1ab04380112 100644
(file)
--- a/
gtk/gtkwindow.c
+++ b/
gtk/gtkwindow.c
@@
-5094,6
+5094,9
@@
create_decoration (GtkWidget *widget)
if (priv->client_decorated)
return;
+ if (!priv->decorated)
+ return;
+
if (priv->type == GTK_WINDOW_POPUP)
return;